import XendOptions
from XendLogging import log
from XendError import VmError
-
-
-PROC_XEN_BALLOON = '/proc/xen/balloon'
+import osdep
RETRY_LIMIT = 20
RETRY_LIMIT_INCR = 5
"""Returns the value for the named label. Returns None if the label was
not found or the value was non-numeric."""
- f = file(PROC_XEN_BALLOON, 'r')
- try:
- for line in f:
- keyvalue = line.split(':')
- if keyvalue[0] == label:
- values = keyvalue[1].split()
- if values[0].isdigit():
- return int(values[0])
- else:
- return None
- return None
- finally:
- f.close()
+ return osdep.lookup_balloon_stat(label)
def get_dom0_current_alloc():
"""Returns the current memory allocation (in KiB) of dom0."""
"SunOS": "vif-vnic"
}
+def _linux_balloon_stat(label):
+ """Returns the value for the named label, or None if an error occurs."""
+
+ PROC_XEN_BALLOON = '/proc/xen/balloon'
+ f = file(PROC_XEN_BALLOON, 'r')
+ try:
+ for line in f:
+ keyvalue = line.split(':')
+ if keyvalue[0] == label:
+ values = keyvalue[1].split()
+ if values[0].isdigit():
+ return int(values[0])
+ else:
+ return None
+ return None
+ finally:
+ f.close()
+
+def _solaris_balloon_stat(label):
+ """Returns the value for the named label, or None if an error occurs."""
+
+ import fcntl
+ import array
+ DEV_XEN_BALLOON = '/dev/xen/balloon'
+ BLN_IOCTL_CURRENT = 0x4201
+ BLN_IOCTL_TARGET = 0x4202
+ BLN_IOCTL_LOW = 0x4203
+ BLN_IOCTL_HIGH = 0x4204
+ BLN_IOCTL_LIMIT = 0x4205
+ label_to_ioctl = { 'Current allocation' : BLN_IOCTL_CURRENT,
+ 'Requested target' : BLN_IOCTL_TARGET,
+ 'Low-mem balloon' : BLN_IOCTL_LOW,
+ 'High-mem balloon' : BLN_IOCTL_HIGH,
+ 'Xen hard limit' : BLN_IOCTL_LIMIT }
+
+ f = file(DEV_XEN_BALLOON, 'r')
+ try:
+ values = array.array('L', [0])
+ if fcntl.ioctl(f.fileno(), label_to_ioctl[label], values, 1) == 0:
+ return values[0]
+ else:
+ return None
+ finally:
+ f.close()
+
+_balloon_stat = {
+ "SunOS": _solaris_balloon_stat
+}
+
def _get(var, default=None):
return var.get(os.uname()[0], default)
pygrub_path = _get(_pygrub_path, "/usr/bin/pygrub")
netback_type = _get(_netback_type, "netfront")
vif_script = _get(_vif_script, "vif-bridge")
+lookup_balloon_stat = _get(_balloon_stat, _linux_balloon_stat)